home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / sc3x02.zip / NWSYS.H < prev    next >
Text File  |  1993-03-01  |  508b  |  17 lines

  1. //
  2. //  If you already have these defined, just remove them.
  3. //
  4. typedef unsigned char BYTE;
  5. typedef unsigned short WORD;
  6. typedef unsigned long DWORD;
  7. typedef unsigned long LONG;
  8.  
  9. extern  DWORD   DWordSwap( DWORD );
  10. extern  WORD    WordSwap( WORD  );
  11.  
  12. WORD    NWSystemCall(BYTE,          // function code
  13.                      void far *,    // request buffer
  14.                      WORD,          // request length
  15.                      void far *,    // reply buffer
  16.                      WORD);         // reply length
  17.